home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / swagd_f.zip / FILES.SWG / 0025_Set DOS Filemode.pas < prev    next >
Pascal/Delphi Source File  |  1993-08-27  |  763b  |  24 lines

  1. LOU DUCHEZ
  2.  
  3. >Could someone post all the different File Modes availl with FileMode, and a
  4. >short descript of each one?
  5.  
  6. The FileMode byte reserves certain bits to specify different capabilities.
  7. They are:
  8.  
  9. 76543210
  10. --------
  11. .....000  - Read access
  12. .....001  - Write access
  13. .....010  - Read/write access
  14. ....0...  - Reserved - must be zero
  15. .000....  - Sharing mode - compatibility mode ["no sharing"?]
  16. .001....  - Sharing mode - read/write access denied
  17. .010....  - Sharing mode - write access denied
  18. .011....  - Sharing mode - read access denied
  19. .100....  - Sharing mode - full access permitted
  20. 0.......  - Inherited by child processes
  21. 1.......  - Private to current process
  22.  
  23. I got this out of a pocket DOS/BIOS reference -- hope it helps.
  24.